Flash can convert ASCII code numbers into characters, and characters into ASCII code numbers.
The function Chr
converts ASCII code numbers to characters. For example, the function Chr (65) = "A"
converts the number 65 to the letter "A".
The function Ord
converts characters to ASCII code numbers. For example, the function Ord(a) = 97
converts the letter "a" to the number 97.